From e8b22dc87eb5e384ceaf1adabb7319698aeb0eae Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sat, 16 Mar 2024 16:17:46 -0500 Subject: [PATCH] Change name: instance_method_mock_fixture() -> late_instance_mock_fixture() --- tests/test_pgwui_copy.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/test_pgwui_copy.py b/tests/test_pgwui_copy.py index eaa9208..7ecd066 100644 --- a/tests/test_pgwui_copy.py +++ b/tests/test_pgwui_copy.py @@ -1,4 +1,5 @@ -# Copyright (C) 2019, 2020 The Meme Factory, Inc. http://www.karlpinc.com/ +# Copyright (C) 2019, 2020, 2024 The Meme Factory, Inc. +# http://www.karlpinc.com/ # This file is part of PGWUI_Copy. # @@ -100,8 +101,8 @@ mock_establish_settings = testing.make_mock_fixture( # includeme() -mock_add_route = testing.instance_method_mock_fixture('add_route') -mock_scan = testing.instance_method_mock_fixture('scan') +mock_add_route = testing.late_instance_mock_fixture('add_route') +mock_scan = testing.late_instance_mock_fixture('scan') @pytest.mark.unittest -- 2.34.1